From 26b39a0d631fec55151680d5f88543f93f25ec59 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 28 Oct 2009 10:59:55 +0000 Subject: [PATCH] xend: disallow ! as a sxp separator Signed-off-by: Jim Fehlig --- tools/python/xen/xend/sxp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/sxp.py b/tools/python/xen/xend/sxp.py index c5a2e2a9f3..c31f8e4d21 100644 --- a/tools/python/xen/xend/sxp.py +++ b/tools/python/xen/xend/sxp.py @@ -142,7 +142,7 @@ class Parser: return self.in_class(c, ' \t\n\v\f\r') def is_separator(self, c): - return self.in_class(c, '{}()<>[]!;') + return self.in_class(c, '{}()<>[];') def in_comment_class(self, c): return self.in_class(c, '#') -- 2.30.2